home *** CD-ROM | disk | FTP | other *** search
- // Copyright 1999 Macromedia, Inc. All rights reserved.
-
-
- //*************** GLOBALS *****************
-
- var CMD_PATH = 'Clean Up Word HTML.htm';
-
-
- //***************** LOCAL FUNCTIONS ******************
-
- function init() {
- var curDOM, newDOM;
- // Select the word file to be imported, don't show images, supress not in root warnings.
- var fileName = browseForFileURL("open", MSG_Word_Import, false, true); //returns a local filename
- if (fileName) {
- // Check for name may not exist.
- curDOM = dw.getDocumentDOM(fileName);
- if (curDOM) {
- newDOM = dw.createDocument();
- if (newDOM) {
- newDOM.documentElement.outerHTML = curDOM.documentElement.outerHTML;
-
- dreamweaver.popupCommand(CMD_PATH); //launch the command
- }
- }
- }
- }
-